home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / DCLAP 6d / dclap6d / network / ncsasock / unixlib.h < prev   
Text File  |  1996-07-05  |  632b  |  23 lines

  1. /* unixlib.h
  2.   dgg, ansi c header for damn k&r stuff
  3.   */
  4.   
  5.   
  6. char *getwd(char *where) ;
  7. int chdir( char * pathName);
  8. int gettimeofday(struct timeval *tp,struct timezone *tzp); 
  9. int sleep(unsigned seconds) ;
  10. long int getuid(void);
  11. struct passwd *getpwent(void);
  12. struct passwd *getpwuid(void);
  13. struct passwd *getpwnam(void);
  14. int chmod(char *path,int mode);
  15. char *mktemp(char * atemplate);
  16. void abort(void);
  17. void bzero(void * b,long s);
  18. void bfill( void *b,long s,char fill);
  19. void bcopy (void* c1, void* c2, long s);
  20. int bcmp (void* c1,void* c2,long s);
  21. int strcasecmp(char* s1,char* s2);
  22. int strncasecmp(char *s1,char * s2,int n);
  23.